home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 23 code / Multipane Dialogs Code / Sample.h < prev    next >
Encoding:
Text File  |  1995-04-18  |  485 b   |  25 lines  |  [TEXT/MMCC]

  1. /* Sample application which makes use of the multi-pane dialog code
  2.  * By Norman Franke
  3.  */
  4.  
  5. // Required Headers
  6. #ifndef __TOOLUTILS__
  7. #include <ToolUtils.h>
  8. #endif
  9.  
  10. #ifndef __DEVICES__
  11. #include <Devices.h> // for OpenDeskAcc()
  12. #endif
  13.  
  14. //----------------
  15.  
  16. // Initialize application's menus
  17. void CreateMenus(void);
  18.  
  19. // Process a menu command
  20. void DoMenuCommand(long menuVal);
  21.  
  22. // Adjust menus depending for movable modal dialog display
  23. void SetMenusIdle(void);
  24. void SetMenusBusy(void);
  25.